home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / sched.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  112 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''A generally useful event scheduler class.
  5.  
  6. Each instance of this class manages its own queue.
  7. No multi-threading is implied; you are supposed to hack that
  8. yourself, or use a single instance per application.
  9.  
  10. Each instance is parametrized with two functions, one that is
  11. supposed to return the current time, one that is supposed to
  12. implement a delay.  You can implement real-time scheduling by
  13. substituting time and sleep from built-in module time, or you can
  14. implement simulated time by writing your own functions.  This can
  15. also be used to integrate scheduling with STDWIN events; the delay
  16. function is allowed to modify the queue.  Time can be expressed as
  17. integers or floating point numbers, as long as it is consistent.
  18.  
  19. Events are specified by tuples (time, priority, action, argument).
  20. As in UNIX, lower priority numbers mean higher priority; in this
  21. way the queue can be maintained fully sorted.  Execution of the
  22. event means calling the action function, passing it the argument.
  23. Remember that in Python, multiple function arguments can be packed
  24. in a tuple.   The action function may be an instance method so it
  25. has another way to reference private data (besides global variables).
  26. Parameterless functions or methods cannot be used, however.
  27. '''
  28. import bisect
  29. __all__ = [
  30.     'scheduler']
  31.  
  32. class scheduler:
  33.     
  34.     def __init__(self, timefunc, delayfunc):
  35.         '''Initialize a new instance, passing the time and delay
  36.         functions'''
  37.         self.queue = []
  38.         self.timefunc = timefunc
  39.         self.delayfunc = delayfunc
  40.  
  41.     
  42.     def enterabs(self, time, priority, action, argument):
  43.         '''Enter a new event in the queue at an absolute time.
  44.  
  45.         Returns an ID for the event which can be used to remove it,
  46.         if necessary.
  47.  
  48.         '''
  49.         event = (time, priority, action, argument)
  50.         bisect.insort(self.queue, event)
  51.         return event
  52.  
  53.     
  54.     def enter(self, delay, priority, action, argument):
  55.         '''A variant that specifies the time as a relative time.
  56.  
  57.         This is actually the more commonly used interface.
  58.  
  59.         '''
  60.         time = self.timefunc() + delay
  61.         return self.enterabs(time, priority, action, argument)
  62.  
  63.     
  64.     def cancel(self, event):
  65.         '''Remove an event from the queue.
  66.  
  67.         This must be presented the ID as returned by enter().
  68.         If the event is not in the queue, this raises RuntimeError.
  69.  
  70.         '''
  71.         self.queue.remove(event)
  72.  
  73.     
  74.     def empty(self):
  75.         '''Check whether the queue is empty.'''
  76.         return len(self.queue) == 0
  77.  
  78.     
  79.     def run(self):
  80.         """Execute events until the queue is empty.
  81.  
  82.         When there is a positive delay until the first event, the
  83.         delay function is called and the event is left in the queue;
  84.         otherwise, the event is removed from the queue and executed
  85.         (its action function is called, passing it the argument).  If
  86.         the delay function returns prematurely, it is simply
  87.         restarted.
  88.  
  89.         It is legal for both the delay function and the action
  90.         function to to modify the queue or to raise an exception;
  91.         exceptions are not caught but the scheduler's state remains
  92.         well-defined so run() may be called again.
  93.  
  94.         A questionably hack is added to allow other threads to run:
  95.         just after an event is executed, a delay of 0 is executed, to
  96.         avoid monopolizing the CPU when other threads are also
  97.         runnable.
  98.  
  99.         """
  100.         q = self.queue
  101.         while q:
  102.             (time, priority, action, argument) = q[0]
  103.             now = self.timefunc()
  104.             if now < time:
  105.                 self.delayfunc(time - now)
  106.                 continue
  107.             del q[0]
  108.             void = action(*argument)
  109.             self.delayfunc(0)
  110.  
  111.  
  112.